home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / parted / natmath.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  3KB  |  96 lines

  1. /*
  2.     libparted - a library for manipulating disk partitions
  3.     Copyright (C) 2000 Free Software Foundation, Inc.
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  18. */
  19.  
  20. #ifndef PED_NATMATH_H_INCLUDED
  21. #define PED_NATMATH_H_INCLUDED
  22.  
  23. typedef struct _PedAlignment    PedAlignment;
  24.  
  25. #include <parted/disk.h>
  26.  
  27. #define PED_MIN(a, b)    ( ((a)<(b)) ? (a) : (b) )
  28. #define PED_MAX(a, b)    ( ((a)>(b)) ? (a) : (b) )
  29.  
  30. /* this is weird (I'm still not sure I should be doing this!)
  31.  * 
  32.  * For the functions: new, destroy, duplicate and merge: the following values
  33.  * for align are valid:
  34.  *     * align == NULL  (!)          represents no solution
  35.  *     * align->grain_size == 0    represents a single solution
  36.  *                     (align->offset)
  37.  *     * align->grain_size > 0        represents a set of solutions
  38.  *
  39.  * These are invalid:
  40.  *     * align->offset < 0        Note: this gets "normalized"
  41.  *     * align->grain_size < 0
  42.  *
  43.  * For the align_* operations, there must be a solution.  i.e. align != NULL
  44.  * All solutions must be greater than zero.
  45.  */
  46.  
  47. struct _PedAlignment {
  48.     PedSector    offset;
  49.     PedSector    grain_size;
  50. };
  51.  
  52. extern PedSector ped_round_up_to (PedSector sector, PedSector grain_size);
  53. extern PedSector ped_round_down_to (PedSector sector, PedSector grain_size);
  54. extern PedSector ped_round_to_nearest (PedSector sector, PedSector grain_size);
  55. extern PedSector ped_greatest_common_divisor (PedSector a, PedSector b);
  56.  
  57. extern int ped_alignment_init (PedAlignment* align, PedSector offset,
  58.                    PedSector grain_size);
  59. extern PedAlignment* ped_alignment_new (PedSector offset, PedSector grain_size);
  60. extern void ped_alignment_destroy (PedAlignment* align);
  61. extern PedAlignment* ped_alignment_duplicate (const PedAlignment* align);
  62. extern PedAlignment* ped_alignment_intersect (const PedAlignment* a,
  63.                           const PedAlignment* b);
  64.  
  65. extern PedSector
  66. ped_alignment_align_up (const PedAlignment* align, const PedGeometry* geom,
  67.             PedSector sector);
  68. extern PedSector
  69. ped_alignment_align_down (const PedAlignment* align, const PedGeometry* geom,
  70.               PedSector sector);
  71. extern PedSector
  72. ped_alignment_align_nearest (const PedAlignment* align, const PedGeometry* geom,
  73.                  PedSector sector);
  74.  
  75. extern int
  76. ped_alignment_is_aligned (const PedAlignment* align, const PedGeometry* geom,
  77.               PedSector sector);
  78.  
  79. extern const PedAlignment* ped_alignment_any;
  80. extern const PedAlignment* ped_alignment_none;
  81.  
  82. static inline PedSector
  83. ped_div_round_up (PedSector numerator, PedSector divisor)
  84. {
  85.     return (numerator + divisor - 1) / divisor;
  86. }
  87.  
  88. static inline PedSector
  89. ped_div_round_to_nearest (PedSector numerator, PedSector divisor)
  90. {
  91.     return (numerator + divisor/2) / divisor;
  92. }
  93.  
  94. #endif /* PED_NATMATH_H_INCLUDED */
  95.  
  96.